home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_05 / plauger / tie.c < prev    next >
C/C++ Source or Header  |  1994-03-08  |  263b  |  15 lines

  1.  
  2. ------------- Listing 9: The function ios::tie(ostream *) --------------
  3.  
  4. // iostie -- ios::tie(ostream *)
  5. #include <ios>
  6.  
  7. ostream *ios::tie(ostream *nt)
  8.     {    // set new tie
  9.     ostream *ot = _Tiestr;
  10.     _Tiestr = nt;
  11.     return (ot);
  12.     }
  13.  
  14.  
  15.